home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
general
/
fractal
/
kaos.lha
/
complib
/
get_func.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-11-18
|
252 b
|
16 lines
/*
### compute functions in primary coordinates ###
Input: x: in primary coords
Output: f: function values
*/
void get_func(f,x,p,t,dim)
int dim;
double f[],x[],p[],t;
{
extern int stop;
extern int (*func_p)();
stop = (int) func_p(f,x,p,t,dim);
}